GtkStyleContext: Add gtk_render_option().
authorCarlos Garnacho <carlosg@gnome.org>
Sat, 20 Mar 2010 16:40:21 +0000 (17:40 +0100)
committerCarlos Garnacho <carlosg@gnome.org>
Sat, 4 Dec 2010 14:36:53 +0000 (15:36 +0100)
gtk/gtkstylecontext.c
gtk/gtkstylecontext.h

index 96b7f740d556ed441de56244904f0e334ed83f67..50d3bb28590aa88a364479fbd9bb5e0acd923af4 100644 (file)
@@ -607,5 +607,27 @@ gtk_render_check (GtkStyleContext *context,
                               x, y, width, height);
 }
 
+void
+gtk_render_option (GtkStyleContext *context,
+                   cairo_t         *cr,
+                   gdouble          x,
+                   gdouble          y,
+                   gdouble          width,
+                   gdouble          height)
+{
+  GtkStyleContextPrivate *priv;
+  GtkThemingEngineClass *engine_class;
+
+  g_return_if_fail (GTK_IS_STYLE_CONTEXT (context));
+  g_return_if_fail (cr != NULL);
+
+  priv = GTK_STYLE_CONTEXT_GET_PRIVATE (context);
+  engine_class = GTK_THEMING_ENGINE_GET_CLASS (priv->theming_engine);
+
+  _gtk_theming_engine_set_context (priv->theming_engine, context);
+  engine_class->render_option (priv->theming_engine, cr,
+                               x, y, width, height);
+}
+
 #define __GTK_STYLE_CONTEXT_C__
 #include "gtkaliasdef.c"
index fadd1fc03b2f5f3f41d79a907e0eed8bdfa87179..8a14b1ed830bb4bcd61c10681d1151f9b5b3ece3 100644 (file)
@@ -109,6 +109,12 @@ void gtk_render_check (GtkStyleContext *context,
                        gdouble          y,
                        gdouble          width,
                        gdouble          height);
+void gtk_render_option (GtkStyleContext *context,
+                        cairo_t         *cr,
+                        gdouble          x,
+                        gdouble          y,
+                        gdouble          width,
+                        gdouble          height);
 
 G_END_DECLS